/* ============================================== Home Page ========================================================= */
html,
body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    line-height: 1.8;
    letter-spacing: .03em;
    font-size: 17px;
    font-family: "Nunito", serif;
    backface-visibility: hidden;
    scroll-behavior: smooth;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #22252a
}

footer h2,
footer .h4 {
    width: calc(40% - 10px);
    border-bottom: 2px solid #d5dbdb;
    padding-bottom: 8px;
    font-weight: 700
}

ul,
ol,
strong,
p {
    color: #3d424b;
    font-weight: 400;
    font-style: normal
}

a {
    text-decoration: none;
    font-weight: 500;
    color: #215225
}

table {
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 20px 0;
    box-shadow: 0 .55rem 1.25rem rgb(0 65 98 / 4%);
    -webkit-box-shadow: 0 .55rem 1.25rem rgb(0 65 98 / 4%)
}

thead {
    background-color: #215225;
    color: #f5f2f0;
    font-weight: 700;
    font-style: normal
}

tbody {
    background-color: #fff;
    font-weight: 400;
    font-style: normal
}

th {
    background-color: #215225;
    vertical-align: top;
    text-align: left;
    padding: 11px 20px;
    color: #fff;
    font-weight: 700;
    font-style: normal
}

td {
    border: 0 solid #ddd;
    vertical-align: top;
    text-align: left;
    padding: 11px 20px;
    text-align: left
}

tr {
    border-bottom: 1px solid #FAFAFA
}

tbody tr:hover {
    background-color: #FAFAFA
}

.top-bar {
    width: calc(100% - 40px);
    background-color: #215225;
    height: 60px;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000
}

footer h2,
.top-bar .site-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: "Asap Condensed", serif
}

.top-bar .menu {
    display: flex;
    gap: 20px;
    font-weight: 400;
    font-style: normal
}

.top-bar .menu a {
    text-decoration: none;
    color: #f5f2f0;
    font-size: 17px;
    font-weight: 500
}

.top-bar .menu-button {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #f5f2f0
}

.blue-section {
    background-color: #5EA2D5;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px
}

.content {
    padding: 20px 0;
    width: 1100px;
    margin: auto
}

.more-btn {
    display: flex;
    justify-content: center;
    align-items: center
}

.load-more-btn {
    background-color: #215225;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px
}

.load-more-btn:hover {
    background-color: #1a3b43
}

footer {
    background-color: rgb(0, 0, 0);
    color: #d5dbdb;
    padding: 20px;
    text-align: center
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px
}

.footer-column {
    text-align: left
}

.footer-column .h4 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #d5dbdb
}

.footer-column ul {
    list-style: none;
    padding: 0;
    font-weight: 500;
    color: #d5dbdb
}

.footer-column p {
    list-style: none;
    padding: 0;
    font-weight: 500;
    color: #d5dbdb
}

.footer-column ul li {
    margin-bottom: 5px
}

.footer-column ul li a {
    color: #d5dbdb;
    text-decoration: none
}

.footer-column ul li a:hover {
    color: #fff
}

.footer-copy {
    border-top: 1px solid #4d5656;
    padding-top: 20px;
    margin-top: 20px;
    font-size: .9em;
    font-weight: 500;
    color: #d5dbdb
}

@media (max-width:768px) {

    #details td:nth-last-child(1),
    #details th:nth-last-child(1),
    #details td:nth-last-child(2),
    #details th:nth-last-child(2) {
        display: none
    }

    #details-2 td:nth-last-child(1),
    #details-2 th:nth-last-child(1),
    #details-2 td:nth-last-child(2),
    #details-2 th:nth-last-child(2),
    #details-2 td:nth-last-child(3),
    #details-2 th:nth-last-child(3) {
        display: none
    }

    table td:nth-child(3),
    table th:nth-child(3),
    table td:nth-child(4),
    table th:nth-child(4),
    table td:nth-child(5),
    table th:nth-child(5) {
        display: none
    }

    .top-bar .menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #214b52;
        padding: 10px 20px;
        position: absolute;
        top: 60px;
        right: 0;
        width: calc(100% - 40px)
    }

    .top-bar .menu a {
        padding: 10px 0;
        border-bottom: 1px solid #ddd
    }

    .menu a:last-child {
        border-bottom: none
    }

    .top-bar .menu-button {
        display: block
    }

    .content {
        width: 90%;
        margin: auto
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-column {
        margin-bottom: 20px
    }

    .footer-column:last-child {
        margin-bottom: 0
    }
}

/* ============================================== Home Page ========================================================= */


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    height: 50vh;
    width: auto;
    overflow: hidden;
    position: relative;
}

.box .single-box img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    background: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
    -webkit-animation: animate 40s infinite;
    animation: animate 40s infinite;
}

/* Assign delay for each image */
.box .single-box:nth-child(10) img {
    animation-delay: 0s;
}

.box .single-box:nth-child(9) img {
    animation-delay: 4s;
}

.box .single-box:nth-child(8) img {
    animation-delay: 8s;
}

.box .single-box:nth-child(7) img {
    animation-delay: 12s;
}

.box .single-box:nth-child(6) img {
    animation-delay: 16s;
}

.box .single-box:nth-child(5) img {
    animation-delay: 20s;
}

.box .single-box:nth-child(4) img {
    animation-delay: 24s;
}

.box .single-box:nth-child(3) img {
    animation-delay: 28s;
}

.box .single-box:nth-child(2) img {
    animation-delay: 32s;
}

.box .single-box:nth-child(1) img {
    animation-delay: 36s;
}

@keyframes animate {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    40% {
        opacity: 0;
    }
}

/* .box .single-box img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    background: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
    -webkit-animation: animate 32s infinite;
    animation: animate 32s infinite;
}

.box .single-box:nth-child(3) img {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

.box .single-box:nth-child(2) img {
    -webkit-animation-delay: 16s;
    animation-delay: 16s;
}

.box .single-box:nth-child(1) img {
    -webkit-animation-delay: 24s;
    animation-delay: 24s;
}

@keyframes animate {
    25% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

    40% {
        opacity: 0;
    }
} */